/* assets/css/pages/home/approach.css */

.methodology-ops {
    background: #000000;
    padding: 150px 0;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}

.methodology-wrapper {
    max-width: 1100px; /* Centered and tight for authority */
    margin: 0 auto;
    padding: 0 40px;
}

.method-header {
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.m-index { color: #8b2cf5; font-weight: 900; }
.m-title { font-size: 2.5rem; letter-spacing: 4px; margin: 0; }
.m-line { flex-grow: 1; height: 1px; background: rgba(139, 44, 245, 0.2); }

/* Flow Steps Styling */
.method-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border-left: 2px solid rgba(139, 44, 245, 0.3);
    transition: 0.4s;
}

.flow-step:hover {
    background: rgba(139, 44, 245, 0.03);
    border-left-color: #8b2cf5;
    transform: translateX(10px);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(139, 44, 245, 0.2);
    line-height: 1;
}

.flow-step:hover .step-num {
    color: #8b2cf5;
    text-shadow: 0 0 15px rgba(139, 44, 245, 0.5);
}

.step-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #fff;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 800px;
}

/* Connector Dot */
.flow-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 40px;
    width: 10px;
    height: 10px;
    background: #000;
    border: 2px solid rgba(139, 44, 245, 0.3);
    border-radius: 50%;
    z-index: 2;
}

.flow-step:hover::before {
    border-color: #8b2cf5;
    background: #8b2cf5;
    box-shadow: 0 0 10px #8b2cf5;
}

/* Responsive */
@media (max-width: 768px) {
    .m-title { font-size: 1.5rem; }
    .flow-step { grid-template-columns: 1fr; }
}